From 3ceb6ce6b7bff36c32f852aafd305cad1008e1d3 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Fri, 2 Dec 2005 01:19:25 +0000 Subject: [PATCH] Fix error message. Signed-off-by: Ewan Mellor --- tools/xm-test/tests/network-attach/network_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xm-test/tests/network-attach/network_utils.py b/tools/xm-test/tests/network-attach/network_utils.py index 16c521b43a..084b5ebd90 100644 --- a/tools/xm-test/tests/network-attach/network_utils.py +++ b/tools/xm-test/tests/network-attach/network_utils.py @@ -28,7 +28,7 @@ def network_detach(domain_name, console, num=0): eths_before = count_eth(console) status, output = traceCommand("xm network-detach %s %d" % (domain_name, num)) if status != 0: - return -1, "xm network-attach returned invalid %i != 0" % status + return -1, "xm network-detach returned invalid %i != 0" % status eths_after = count_eth(console) if eths_after != (eths_before-1): -- 2.30.2